Forum Activity for @michael

michael
@michael
05/16/19 10:33:00PM
7,816 posts

integrity check stalls on verifying followers


Using Jamroom

That should be working for you now.

There was an issue with 2 profiles. They had items in the following datastore, but the actual profiles look like they'd been deleted but had left over data.

Profile id 101 and 102

Because the new followers module tries to get the data then move it to its new structure, because there was only partial data it was getting stuck.

I don't have any guesses as to why there is only parts of datastore items in the 'jr_jrprofile_item_key' table, but that was the cause.
michael
@michael
05/15/19 05:41:00PM
7,816 posts

integrity check stalls on verifying followers


Using Jamroom

I attached the module file to the ticket, were you able to upload that file via SFTP?
michael
@michael
05/14/19 07:28:56PM
7,816 posts

Adding Lyrics button to Audio Profile and Audio List if lyrics are Available.


Design and Skin Customization

First thing to do is to add a form field of type 'textarea' to the audio CREATE and UPDATE screens for the audio module so your artists have a place to add the lyrics into. To do that, you use the Form Designer

Docs: "Using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/1275/using-the-form-designer

Call the new form field 'audio_lyrics'. Once its created your artists should be able to write the lyrics in there and save it along with the songs or use the UPDATE button to adjust the lyrics.

Thats all you need to do for the input side of things. That data will be stored along with all the other audio information.

Next you need to adjust the template locations where you want that info to be displayed, for that you need to adjust the templates:

Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor

In the location of your screenshot, figure out which template controls that area, then open it in the template editor. You will see the other audio_???? outputs like audio_title. Take note of the format its in, if it looks like this:
{$item.audio_title}
then you can use that same format to output the lyrics
{$item.audio_lyrics}

Get to that point first. From there the rest is just styling.
michael
@michael
05/14/19 07:19:58PM
7,816 posts

Event List


Design and Skin Customization

ACP -> PROFILES -> EVENT CALENDAR -> GLOBAL CONFIG -> SHOW PAST EVENTS
show_events.jpg show_events.jpg - 153KB
michael
@michael
05/14/19 07:17:26PM
7,816 posts

Limiting Characters in List Module


Design and Skin Customization

jrCore_list is the function that creates lists,

Docs: "{jrCore_list ...... }"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/89/jrcore-list

The default template is usually called item_list.tpl. so for the blog module it would be found at /modules/jrBlog/templates/item_list.tpl

But may be overridden by a skin template override called jrBlog_item_list.tpl

Docs: "Altering a modules template"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1051/altering-a-modules-template

In that will be the variable that outputs the blog text, it will look something like this
{$item.blog_text}

You can find the exact name by using the {debug} function

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1477/debug

Onto the end of that use the smarty function truncate

Smarty Docs: "Truncate"
https://www.smarty.net/docs/en/language.modifier.truncate

So to limit to 200 characters
{$item.blog_text|truncate:200}
michael
@michael
05/14/19 12:55:17AM
7,816 posts

is there a way to only alow signups through paid subscriptions?


Using Jamroom

Why not change the subscription signup process to ADMIN APPROVED.
ACP -> USERS -> USERS -> QUOTA CONFIG -> SIGNUP METHOD -> "Admin Validation"

All new users will go into PENDING until you approve them.
michael
@michael
05/14/19 12:49:52AM
7,816 posts

integrity check stalls on verifying followers


Using Jamroom

I have a very simple brain. I can only deal with one thing at a time, so when you put more than one thing in a ticket I get confused easily and am no longer able to be of assistance. Need to deal with one thing at a time.
michael
@michael
05/14/19 12:44:35AM
7,816 posts

Askimet With A Jamroom Site


Using Jamroom

If you have activated the Askimet part of the Spam Blocker module, then any newly created item will be sent off to akismet and checked to see if its spam or not. If Askimet returns that "Yes this is spam" then the item will be tagged as 'pending' and will appear to your admin users at
DASHBOARD -> PENDING -> (item type)

From there the admin can either approve or delete the offending item.
michael
@michael
05/14/19 12:35:09AM
7,816 posts

Change Names Of Icons And Titles


Using Jamroom

Probably you're looking for the language strings.

Docs: "Translate Jamroom into another language"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/541/translate-jamroom-into-another-language

Each of the language strings can be changed in the ACP (Admin Control Panel)

Docs: "Admin Control Panel (ACP)"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3067/admin-control-panel-acp

Update the string your interested in, then reset the caches.

Docs: "Somethings wrong what do I do: Reset the cache"
https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do#reset-the-caches
michael
@michael
05/12/19 09:15:42PM
7,816 posts

custom forms send to custom email


Suggestions

At the moment a listener would be the way to do it:

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1011/events-and-listeners

The jrUser_notify() function is the one that does all the sending and checking of users preference of how they want to be notified and it has an event trigger in it 'notify_user'.

OR if you're only interested in emails, then there is the event 'email_addresses' in the jrCore_send_email() function.

You could use your listener to add any address you wanted into there.
  87